home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / aie9009.zip / FRAMES.ZIP / ES2.DOC < prev    next >
Text File  |  1990-07-09  |  3KB  |  94 lines

  1.  
  2.         FRAME-BASED EXPERT SYSTEM
  3.  
  4.                      by
  5.  
  6.                   Instant Recall
  7.                   P.O. Box 30134
  8.                   Bethesda, Md. 20814
  9.                   (301) 530-0898
  10.                   BBS: (301) 530-2890
  11.  
  12.                   (C) Copyright 1990 by Instant Recall
  13.                   All Rights Reserved
  14.  
  15. INTRODUCTION
  16.  
  17. This is a frame-based expert system shell, as discussed in the
  18. Sept. '90 Expert Toolbox in AI Expert Magazine.
  19.  
  20. The purpose of this shell is to demo a frame-based shell.  Therefore
  21. only a minimal set of features are included.  In addition, the shell
  22. prints out the final state of its knowledge base after a session --
  23. something that you wouldn't do for an end user.  (Note: Don't worry
  24. if some of that rushes off the screen - it also goes to the LOG.LOG
  25. file).
  26.  
  27. HARDWARE REQUIREMENTS
  28.  
  29. The expert system requires an IBM-PC, XT, AT, 386 or PS/2 compatible
  30. machine.  The minimum amount of RAM memory required for
  31. the expert system is about 384K, but more is better.
  32.  
  33.  
  34. INSTALLATION
  35.  
  36. This program comes in a self-dearcing file.  Copy the file
  37. to a subdirectory and type the file name (without extension)
  38. into DOS.
  39.  
  40. ALLOCATING FILES AND BUFFERS
  41.  
  42. The expert system is written in Prolog, which uses a number of files
  43. internally.  Therefore, to guarantee that the system does
  44. not run out of file buffers during a run of The expert system, it is
  45. best to include the following commands in your CONFIG.SYS
  46. file.
  47.  
  48. files=20
  49. buffers=20
  50.  
  51. NOTE:  The actual number of file buffers used is around 10,
  52. so you can probably get by with numbers smaller than 20 in
  53. these commands.
  54.  
  55. RUNNING THE PROGRAM
  56.  
  57. Type to DOS either
  58.  
  59. es2
  60.  
  61.  
  62. THE KNOWLEDGE BASE FILE
  63.  
  64. SITE.KB is an example knowledge base for this expert system shell.
  65. Both the rules and the goal are frames, in standard Prolog frame
  66. notation.
  67.  
  68. THE LOG FILE
  69.  
  70. Anything you see on the screen during a run of the program also
  71. appears in the LOG.LOG file.  This lets you review the behavior of
  72. the expert system shell.
  73.  
  74.  
  75. LICENSE
  76.  
  77. Instant Recall grants you
  78.  
  79. * Unlimited personal use of this expert system shell.
  80.  
  81. * The right to distribute this shell, provided
  82.   -- you charge at most the cost of a diskette.
  83.   -- all copies display the Instant Recall copyright.
  84.  
  85. If you want to use professionally this shell or a derivative
  86. built by modifying this code , you must obtain a commercial
  87. license ($25) from Instant Recall.  With this license you can
  88. distribute as many copies with your own knowledge bases as you
  89. want, with no additional royalties.  The Instant Recall copyright
  90. of the PROGRAM must appear on all copies.
  91.  
  92.  
  93.          - eof -
  94.